body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background: #f5f5f5;
}

h2 {
    text-align: center;
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
}

input {
    padding: 8px;
    width: 250px;
}

button {
    padding: 8px 15px;
    background: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

#results {
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.news-item {
    background: white;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
}

.news-item h3 {
    margin: 0;
}

.news-item a {
    text-decoration: none;
    color: #007BFF;
}
